home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / system / can.zip / TEST.C < prev    next >
C/C++ Source or Header  |  1994-02-16  |  210b  |  14 lines

  1. /*
  2.  * Test program to display passed arguments.
  3.  */
  4. #include \mc\stdio.h
  5.  
  6. main(argc, argv)
  7.     int argc;
  8.     char *argv[];
  9. {
  10.     int i;
  11.     for(i=0; i < argc; ++i)
  12.         printf("argv[%u] = '%s'\n", i, argv[i]);
  13. }
  14.